home *** CD-ROM | disk | FTP | other *** search
/ Ice Princess Press Kit / Ice Princess Press Kit.iso / pc / program.dxr / Intro & Bgs_1_Flash Controller Sprite 3.ls < prev    next >
Encoding:
Text File  |  2005-03-02  |  477 b   |  24 lines

  1. property gowhere
  2.  
  3. on getBehaviorDescription me
  4.   return "Flash Controller Goto" & RETURN & RETURN & "Use on Sprite 3"
  5. end
  6.  
  7. on getBehaviorTooltip me
  8.   return "Use with any sprite member."
  9. end
  10.  
  11. on getPropertyDescriptionList me
  12.   xlist = [:]
  13.   addProp(xlist, #gowhere, [#comment: "Navigate Where:", #format: #marker, #default: #string])
  14.   return xlist
  15. end
  16.  
  17. on exitFrame
  18.   if sprite(7).frame < sprite(7).member.frameCount then
  19.     go(the frame)
  20.   else
  21.     go(gowhere)
  22.   end if
  23. end
  24.